-
Notifications
You must be signed in to change notification settings - Fork 170
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: update architecture diagrams #241
fix: update architecture diagrams #241
Conversation
davenportjw
commented
Jul 31, 2023
- updates architecture diagrams for Workflows and removes Functions
/gcbrun |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
One minor nit.
build/int.cloudbuild.yaml
Outdated
@@ -39,6 +39,9 @@ steps: | |||
- id: apply-dwh | |||
name: 'gcr.io/cloud-foundation-cicd/$_DOCKER_IMAGE_DEVELOPER_TOOLS:$_DOCKER_TAG_VERSION_DEVELOPER_TOOLS' | |||
args: ['/bin/bash', '-c', 'cft test run TestDataWarehouse --stage apply --verbose'] | |||
- id: wait-for-post-apply-steps | |||
name: 'gcr.io/cloud-foundation-cicd/$_DOCKER_IMAGE_DEVELOPER_TOOLS:$_DOCKER_TAG_VERSION_DEVELOPER_TOOLS' | |||
args: ['sleep', '$_API_ACTIVATION_SECONDS_WAIT'] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: do you want to just pass the arg for the no. of seconds here directly instead of using a variable? Also, _API_ACTIVATION_SECONDS_WAIT
isn't really accurate.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If this wait is needed during local test execution too, doing it within verify func with time.sleep()
is better.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
local tests in this still assume running all of the apply stages prior correct?